home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Broadcaster / Protocols / DiskInsertion.h < prev    next >
Text File  |  2000-06-23  |  390b  |  23 lines

  1. // DiskInsertion.h
  2.  
  3. #ifndef DiskInsertion_h
  4. #define DiskInsertion_h
  5.  
  6. #include <MacTypes.h>
  7.  
  8. class DiskInsertionEvent;
  9.  
  10. class DiskInsertion
  11.   {
  12.     protected:
  13.         ~DiskInsertion()                    {}
  14.     
  15.     public:
  16.         virtual void ReceiveDiskInsertion( const DiskInsertionEvent& );
  17.         
  18.         virtual void ReceiveDiskInsertionFailure( const DiskInsertionEvent&,
  19.                                                                 OSErr initializationError );
  20.   };
  21.  
  22. #endif
  23.